home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Your Choice 3
/
Your Choice Software Collection 3.iso
/
dos
/
qpeg15e
/
install.dat
/
DRVSRC
/
STDVGA.ASM
< prev
next >
Wrap
Assembly Source File
|
1994-05-01
|
305b
|
23 lines
;
; QPEG video driver
; for standard VGA and non-supported VGA chipsets
;
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank: retf
Init: retf
Exit: retf
Code Ends
End Procs
; End of source.